home *** CD-ROM | disk | FTP | other *** search
-
- chrout =$ffd2
- .org $c000
- .mem
- .obj "jstrout c000"
-
- stx getit+1
- sty getit+2
-
- ldy #0
- jsr rom'out
-
- getit lda $c800,y
- jsr rom'in
- beq ++
- jsr chrout
- inc getit+1
- bne +
- inc getit+2
- + bne getit
-
- + rts
-
- rom'out pha
- lda #$74
- sei
- sta 1
- pla
- rts
-
- rom'in pha
- lda #$77
- sta 1
- cli
- pla
- rts
-